home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Plotting / aa_Intel_Only / Gnuplot / GnuplotSource / DataFilePane.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  878 b   |  47 lines

  1. /*
  2.  *  Copyright (C) 1993  Robert Davis
  3.  *
  4.  *  This program is free software; you can redistribute it and/or
  5.  *  modify it under the terms of Version 2, or any later version, of 
  6.  *  the GNU General Public License as published by the Free Software 
  7.  *  Foundation.
  8.  */
  9.  
  10. /* $Id: DataFilePane.h,v 1.6 1993/05/30 09:10:05 davis Exp $ */
  11.  
  12. #import "FunctionPane.h"
  13.  
  14. #define    XCOL        0
  15. #define    YCOL        1
  16. #define    YDELTACOL    2
  17. #define    YLOWCOL        3
  18. #define    YHIGHCOL    4
  19. #define    BOXWIDTHCOL    5
  20.  
  21. #define USE_DELTA    0
  22.  
  23. @interface DataFilePane:FunctionPane
  24. {
  25.     id        detailedButton;
  26.     id        colRadioMatrix;
  27.     id        infoField;
  28.     id        infoLine2;
  29.  
  30.     id        xColField;
  31.     id        yColField;
  32.     id        yDeltaColField;
  33.     id        yLowColField;
  34.     id        yHighColField;
  35.     id        boxWidthColField;
  36. }
  37.  
  38. - init;
  39.  
  40. - setDetailed:sender;
  41. - setColumnsData:sender;
  42. - setYDiff:sender;
  43.  
  44. - (BOOL)updateStatus:aStatus doc:aDoc;
  45.  
  46. @end
  47.